DataCollection | ComponentOne
C1.iOS.DataCollection Assembly / C1.iOS.DataCollection Namespace / C1CollectionViewSource<T> Class / GetItemCell Method
The collection view.
Location of the row where the cell will be displayed.
The data item.

In This Topic
    GetItemCell Method (C1CollectionViewSource<T>)
    In This Topic
    Gets the visual element representing an item.
    Syntax
    'Declaration
     
    Public Overridable Function GetItemCell( _
       ByVal collectionView As UIKit.UICollectionView, _
       ByVal indexPath As Foundation.NSIndexPath, _
       ByVal item As T _
    ) As UIKit.UICollectionViewCell
    public virtual UIKit.UICollectionViewCell GetItemCell( 
       UIKit.UICollectionView collectionView,
       Foundation.NSIndexPath indexPath,
       T item
    )

    Parameters

    collectionView
    The collection view.
    indexPath
    Location of the row where the cell will be displayed.
    item
    The data item.
    See Also